home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_01_04
/
1n04040b
< prev
next >
Wrap
Text File
|
1990-07-23
|
201b
|
16 lines
if not (c in ['0' .. '9']) do
begin
code := i;
exit;
end;
n := ord(c) - ord('0');
c := next;
while c in ['0' .. '9'] do
begin
n := 10 * n + ord(c) - ord('0');
c := next;
end;